3
How do I change the control's font

local oSlider

oSlider = form.EXSLIDERACTIVEXCONTROL1.nativeObject
oSlider.ThumbSize = 32
oSlider.Font.Name = "Tahoma"
oSlider.ForeColor = 0xff
oSlider.Template = [Caption(256) = "thumb"] // oSlider.Caption(256) = "thumb"

2
How can I change the control's foreground color

local oSlider

oSlider = form.EXSLIDERACTIVEXCONTROL1.nativeObject
oSlider.ForeColor = 0xff
oSlider.ThumbSize = 32
oSlider.Template = [Caption(256) = "thumb"] // oSlider.Caption(256) = "thumb"

1
How can I change the control's background color

local oSlider

oSlider = form.EXSLIDERACTIVEXCONTROL1.nativeObject
oSlider.BackColor = 0xff00